Java实现动态切换ubuntu壁纸功能

1.在一个文件夹放好图片

2.读取文件夹的图片路径,放入数组

3.调用命令将图片逐个设置为壁纸

使用 Java 在 Ubuntu Linux 系统中实现自动切换壁纸的示例程序。这个程序使用了gnome-desktop-item-edit命令来设置壁纸,并通过定时任务来定期切换壁纸

java 复制代码
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Timer;
import java.util.TimerTask;

public class WallpaperChangerGUI extends JFrame {

    private Timer timer;
    private String[] imagePaths;
    private int currentImageIndex;
    private Point initialClick;
    public WallpaperChangerGUI() {
        setTitle("Wallpaper Changer");

        // 去掉标题栏
        setUndecorated(true);

        // 设置窗口半透明
        setOpacity(0.3f);

        setSize(300, 150);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setLocationRelativeTo(null);
        setLayout(new FlowLayout());

        JButton startButton = new JButton("Start");
        JButton stopButton = new JButton("Stop");

        startButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                startChangingWallpaper();
            }
        });

        stopButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                stopChangingWallpaper();
            }
        });

        add(startButton);
        add(stopButton);

        JButton exitButton = new JButton("Exit");
        exitButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                System.exit(0);
            }
        });

        add(exitButton);

        // 添加鼠标拖动功能
        addMouseListener(new MouseAdapter() {


            @Override
            public void mousePressed(MouseEvent e) {
                initialClick = e.getPoint();
                //System.out.println("press");
            }

        });

        addMouseMotionListener(new MouseAdapter() {
            @Override
            public void mouseDragged(MouseEvent e) {
                if (initialClick!= null) {
                    Point currentPos = e.getLocationOnScreen();
                    setLocation(currentPos.x - initialClick.x, currentPos.y - initialClick.y);
                }
            }
        });

        // 假设你的图片路径数组
        imagePaths = new String[]{"/home/xxx/图片/壁纸/No.2358/0009.jpg",
                "/home/xxx/图片/壁纸/No.2358/0010.jpg",
                "/home/xxx/图片/壁纸/No.2358/0022.jpg"

            };
        currentImageIndex = 0;

    }

    public void startChangingWallpaper() {
        if (timer == null) {
            timer = new Timer();
            timer.scheduleAtFixedRate(new TimerTask() {
                @Override
                public void run() {
                    setWallpaper(imagePaths[currentImageIndex]);
                    currentImageIndex = (currentImageIndex + 1) % imagePaths.length;
                }
            }, 0, 5*1000); // 每一分钟切换一次壁纸,可以根据需要调整时间间隔
        }
    }

    public void stopChangingWallpaper() {
        if (timer!= null) {
            timer.cancel();
            timer = null;
        }
    }

    public static void setWallpaper(String imagePath) {
        try {
            // 使用 gnome-desktop-item-edit 命令设置壁纸
            Process process = Runtime.getRuntime().exec(new String[]{
                    "gsettings", "set", "org.gnome.desktop.background", "picture-uri", "file://" + imagePath
            });
            process.waitFor();
            if (process.exitValue() == 0) {
                System.out.println("Wallpaper set successfully to " + imagePath);
            } else {
                System.out.println("Failed to set wallpaper.");
            }
        } catch (IOException | InterruptedException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> {
            WallpaperChangerGUI gui = new WallpaperChangerGUI();
            gui.setVisible(true);
        });
    }
}
相关推荐
梓仁沐白2 小时前
ubuntu+windows双系统切换后蓝牙设备无法连接
windows·ubuntu
Theodore_10223 小时前
4 设计模式原则之接口隔离原则
java·开发语言·设计模式·java-ee·接口隔离原则·javaee
冰帝海岸4 小时前
01-spring security认证笔记
java·笔记·spring
世间万物皆对象4 小时前
Spring Boot核心概念:日志管理
java·spring boot·单元测试
没书读了5 小时前
ssm框架-spring-spring声明式事务
java·数据库·spring
----云烟----5 小时前
QT中QString类的各种使用
开发语言·qt
lsx2024065 小时前
SQL SELECT 语句:基础与进阶应用
开发语言
小二·5 小时前
java基础面试题笔记(基础篇)
java·笔记·python
开心工作室_kaic5 小时前
ssm161基于web的资源共享平台的共享与开发+jsp(论文+源码)_kaic
java·开发语言·前端
向宇it5 小时前
【unity小技巧】unity 什么是反射?反射的作用?反射的使用场景?反射的缺点?常用的反射操作?反射常见示例
开发语言·游戏·unity·c#·游戏引擎